list.sort((a, b) => (a.color > b.color) ? 1 : -1)
itemsArray.sort(function(a, b){ return sortingArr.indexOf(a) - sortingArr.indexOf(b); });